*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e2a38;
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 12%;
    background: rgb(75, 75, 75);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 25px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.logo:hover{
    color: rgb(27, 154, 27);
    text-shadow: 0 0 25px rgb(27, 154, 27),
                 0 0 50px rgb(27, 154, 27);
    transform: scale(1.1);
}

span{
    color: rgb(27, 154, 27);
}

.navbar a{
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active{
    color:rgb(27, 154, 27);
    border-bottom: 3px solid rgb(27, 154, 27);
}

main {
    margin-top: 120px;
    padding: 0 5%;
}

.title-section {
    text-align: center;
    margin-bottom: 50px;
}

.title-section h1 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.title-section .subtitle {
    color: #bdc3c7;
    font-size: 1.2em;
}

.realisations-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.realisation-card {
    background: #2c3e50;
    border-radius: 10px;
    padding: 25px;
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.realisation-card h2 {
    color: #42a5f5;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.description {
    color: #bdc3c7;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.version-word {
    background-color: rgb(27, 154, 27);
    color: white;
}

.version-pdf {
    background-color: rgb(27, 154, 27);
    color: white;
}

.version-word:hover,
.version-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.elements-section {
    margin-top: 50px;
    text-align: center;
}

.elements-section h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 2em;
}

.elements-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.element-card {
    background: #2c3e50;
    border-radius: 10px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.element-card h3 {
    color: #42a5f5;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.visualiser {
    background-color: rgb(27, 154, 27);
    color: white;
    display: inline-block;
}

.visualiser:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer{
    position: relative;
    width: 100%;
    padding: 40px 0;
    background-color: black;
    margin-top: auto;
}

.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: white;
}

.footer .social a{
    font-size: 24px;
    color: white;
    border: 2px solid rgb(27, 154, 27);
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: inset 0 0 10px rgb(27, 154, 27), 0 0 10px rgb(27, 154, 27);
    transition: 0.3s ease;
}

.footer .social a:hover{
    transform: scale(1.2)translate(-10px);
    color: rgb(27, 154, 27);
    border: 2px solid rgb(27, 154, 27);
}

.footer ul{
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a{
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.footer ul li a:hover{
    border-bottom: 3px solid rgb(27, 154, 27);
}

.footer ul li{
    display: inline-block;
    padding: 0 15px;
}

.footer .copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: white;
}

#menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    color: white;
}

@media screen and (max-width: 1200px) {
    .header {
        padding: 25px 8%;
    }
    .realisation-card {
        width: 350px;
    }
}

@media screen and (max-width: 991px) {
    .header {
        padding: 20px 5%;
    }
    .navbar a {
        font-size: 16px;
        margin: 0 10px;
    }
    .realisation-card {
        width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 15px 5%;
    }
    .logo {
        font-size: 20px;
    }
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgb(75, 75, 75);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 100px 0;
        transition: 0.3s ease;
        z-index: 10000;
    }
    .navbar.active {
        right: 0;
    }
    .navbar a {
        display: block;
        font-size: 20px;
        margin: 15px 0;
        padding: 10px 20px;
        border-radius: 5px;
        transition: 0.3s ease;
    }
    .navbar a:hover {
        background: rgb(27, 154, 27);
        color: white;
    }
    #menu-icon {
        display: block;
    }
    .realisation-card,
    .element-card {
        width: 100%;
    }
    .buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .title-section h1 {
        font-size: 2em;
    }
    .title-section .subtitle {
        font-size: 1em;
    }
    .footer ul li {
        display: block;
        margin: 10px 0;
    }
    .footer .social a {
        width: 35px;
        height: 35px;
        line-height: 33px;
    }
} 